home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 1.0 beta / flock-1.0RC3.en-US.win32.exe / flock / components / nsSetDefaultBrowser.js < prev    next >
Text File  |  2007-10-18  |  5KB  |  142 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla Default Browser.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corp.
  18.  * Portions created by the Initial Developer are Copyright (C) 2002
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Bill Law  <law@netscape.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. /* This file implements the nsICommandLineHandler interface.
  39.  *
  40.  * This component handles the startup command line argument of the form:
  41.  *   -setDefaultBrowser
  42.  * by making the current executable the "default browser."
  43.  */
  44.  
  45. function nsSetDefaultBrowser() {
  46. }
  47.  
  48. nsSetDefaultBrowser.prototype = {
  49.   /* nsISupports */
  50.   QueryInterface: function nsSetDefault_QI(iid) {
  51.     if (!iid.equals(Components.interfaces.nsICommandLineHandler) &&
  52.         !iid.equals(Components.interfaces.nsISupports))
  53.       throw Components.results.NS_ERROR_NO_INTERFACE;
  54.  
  55.     return this;
  56.   },
  57.  
  58.   /* nsICommandLineHandler */
  59.   handle : function nsSetDefault_handle(cmdline) {
  60.     if (cmdline.handleFlag("setDefaultBrowser", false)) {
  61.       var shell = Components.classes["@mozilla.org/browser/shell-service;1"]
  62.                             .getService(Components.interfaces.nsIShellService);
  63.       shell.setDefaultBrowser(true, true);
  64.     }
  65.   },
  66.  
  67.   helpText : "  -setDefaultBrowser   Set this app as the default browser.\n"
  68. }
  69.  
  70. // This Component's module and factory implementation.
  71.  
  72. const contractID = "@mozilla.org/browser/default-browser-clh;1";
  73. const CID = Components.ID("{F57899D0-4E2C-4ac6-9E29-50C736103B0C}");
  74.  
  75. var ModuleAndFactory = {
  76.   /* nsISupports */
  77.   QueryInterface: function nsSetDefault_QI(iid) {
  78.     if (!iid.equals(Components.interfaces.nsIModule) &&
  79.         !iid.equals(Components.interfaces.nsIFactory) &&
  80.         !iid.equals(Components.interfaces.nsISupports))
  81.       throw Components.results.NS_ERROR_NO_INTERFACE;
  82.  
  83.     return this;
  84.   },
  85.  
  86.   /* nsIModule */
  87.   getClassObject: function (compMgr, cid, iid) {
  88.     if (!cid.equals(CID))
  89.       throw Components.results.NS_ERROR_NO_INTERFACE;
  90.     
  91.     return this.QueryInterface(iid);
  92.   },
  93.     
  94.   registerSelf: function mod_regself(compMgr, fileSpec, location, type) {
  95.     var compReg =
  96.       compMgr.QueryInterface( Components.interfaces.nsIComponentRegistrar );
  97.  
  98.     compReg.registerFactoryLocation( CID,
  99.                                      "Default Browser Cmdline Handler",
  100.                                      contractID,
  101.                                      fileSpec,
  102.                                      location,
  103.                                      type );
  104.  
  105.     var catMan = Components.classes["@mozilla.org/categorymanager;1"]
  106.                            .getService(Components.interfaces.nsICategoryManager);
  107.  
  108.     catMan.addCategoryEntry("command-line-handler",
  109.                             "m-setdefaultbrowser",
  110.                             contractID, true, true);
  111.   },
  112.     
  113.   unregisterSelf : function mod_unregself(compMgr, location, type) {
  114.     var catMan = Components.classes["@mozilla.org/categorymanager;1"]
  115.                            .getService(Components.interfaces.nsICategoryManager);
  116.  
  117.     catMan.deleteCategoryEntry("command-line-handler",
  118.                                "m-setdefaultbrowser", true);
  119.   },
  120.  
  121.   canUnload: function(compMgr) {
  122.     return true;
  123.   },
  124.  
  125.   /* nsIFactory */
  126.   createInstance: function mod_CI(outer, iid) {
  127.     if (outer != null)
  128.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  129.   
  130.     return new nsSetDefaultBrowser().QueryInterface(iid);
  131.   },
  132.     
  133.   lockFactory : function mod_lock(lock) {
  134.     /* no-op */
  135.   }
  136. }
  137.  
  138. // NSGetModule: Return the nsIModule object.
  139. function NSGetModule(compMgr, fileSpec) {
  140.   return ModuleAndFactory;
  141. }
  142.